home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / sticpsrc.lzh / SOURCE.ARC / VERSION.C < prev    next >
C/C++ Source or Header  |  1990-08-13  |  1KB  |  64 lines

  1. /* version control information */
  2.  
  3. #include "global.h"
  4.  
  5. /* Change only the part after the decimal when making local changes.
  6.  * Prefix is changed only by N3EUA. Persons other than KA9Q making local
  7.  * changes and fixes should append letters to the suffix.
  8.  */
  9.  
  10. /* version checksum.  needed to prevent tampering using hex editors.
  11.  * this checksum is only up to the first space in the string.
  12.  */
  13. int  vercheck  = '8'+'7'+'1'+'2'+'2'+'5'+'.'+'3'+'3'+'.'+
  14.          'P'+'E'+'1'+'C'+'H'+'L'+'.'+'9'+'0'+'0'+'8'+'1'+'3';
  15.  
  16. char version[]= "871225.33.PE1CHL.900813"
  17.         " ("
  18. #ifdef AMIGA
  19.         "Amiga "
  20. #endif
  21. #ifdef ATARI_ST
  22.         "Atari_ST "
  23. #endif
  24. #ifdef MAC
  25.         "Mac "
  26. #endif
  27. #ifdef MSDOS
  28.         "MSDOS "
  29. #endif
  30. #ifdef UNIX
  31.         "UNIX "
  32. #endif
  33.  
  34. #ifdef MWC
  35.         "MWC"
  36. #else
  37. # ifdef MSC
  38.         "MSC"
  39. # else
  40. #  ifdef __TURBOC__
  41.         "TC"
  42. #  else
  43. #   ifdef MSDOS
  44.         "Aztec"
  45. #   endif
  46. #   ifdef M_I286
  47.         "286"
  48. #   endif
  49. #   ifdef M_I386
  50.         "386"
  51. #   endif
  52. #  endif
  53. # endif
  54. #endif
  55. #ifdef MSDOS
  56. # ifdef LARGEDATA
  57.         ".L"
  58. # else
  59.         ".M"
  60. # endif
  61. #endif
  62.         ")";
  63.  
  64.